Tables [dbo].[AsyncStatusMonitor]
Properties
PropertyValue
Row Count0
Created10:31:13 AM Tuesday, March 02, 2010
Last Modified11:40:00 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_AsyncStatusMonitor: AsyncStatusMonitorKeyAsyncStatusMonitorKeyuniqueidentifier16
No
ComponentKeyuniqueidentifier16
No
BusinessItemKeyuniqueidentifier16
No
WorkflowQueueItemKeyuniqueidentifier16
No
CreatedOndatetime8
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_AsyncStatusMonitor: AsyncStatusMonitorKeyPK_AsyncStatusMonitorAsyncStatusMonitorKey
Yes
SQL Script
CREATE TABLE [dbo].[AsyncStatusMonitor]
(
[AsyncStatusMonitorKey] [uniqueidentifier] NOT NULL,
[ComponentKey] [uniqueidentifier] NOT NULL,
[BusinessItemKey] [uniqueidentifier] NOT NULL,
[WorkflowQueueItemKey] [uniqueidentifier] NOT NULL,
[CreatedOn] [datetime] NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[AsyncStatusMonitor] ADD CONSTRAINT [PK_AsyncStatusMonitor] PRIMARY KEY CLUSTERED ([AsyncStatusMonitorKey]) ON [PRIMARY]
GO
Uses